ScrollView sorunu
30.03.2016 - 11:28
Merhaba Arkadaşlar ;
Layout dosyasında da göreceğiniz gibi ScrollView içinde bir adet imageView ve gridView im var. ImageView ve gridView içinde olduğu bir scrollView kullanmak istiyorum. gridView in scrollunu aşağıdaki kod parçacığıyla kapatabiliyorum. Ama yine de scrollView gözükmüyor
gridView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_MOVE) {
return true;
}
return false;
}
});
Activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.harun.gridscroll.MainActivity">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:id="@+id/scrollView">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:layout_width="match_parent"
android:layout_height="300dp"
android:src="@drawable/background_material" />
<GridView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:columnWidth="50dp"
android:gravity="center"
android:numColumns="auto_fit"
android:stretchMode="columnWidth">
</GridView>
</LinearLayout>
</ScrollView>
</RelativeLayout>
gridView in scrollu açık durumdayken aşağıdaki resimdeki gibi gözüküyor
237
Görüntülenme
0 Beğeni